James Balaguer
10/03/2023, 2:51 PMaliaspooryorik
writeoutput
inside a cfoutput
?Tim
10/03/2023, 2:56 PMwriteoutput
returns a boolean -- probably true if the value was successfully written or something... but it's not documented.aliaspooryorik
James Balaguer
10/03/2023, 2:57 PMbdw429s
10/03/2023, 4:50 PMbdw429s
10/03/2023, 4:50 PM<cfoutput encodefor="whatever">
#myoutput#
</cfoutput>
bdw429s
10/03/2023, 4:51 PMwriteOPutput()
BIF specifically, then don't wrap it in hashes, call it from a cfset.
<cfoutput>
<cfset writeOutput( myoutput ) >
</cfoutput>
Now any return value from the function will be discarded, but it will still output to the page.James Balaguer
10/03/2023, 5:15 PM